home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard;
-
- import asp.netobjects.nfx.util.ExceptionHandler;
- import asp.netobjects.nfx.util.ExternalError;
- import asp.netobjects.nfx.util.InternalError;
- import asp.netobjects.nfx.wizard.Wizard;
- import asp.netobjects.nfx.wizard.WizardPage;
- import com.sun.java.swing.ImageIcon;
-
- public class WizardModelSub extends WizardModelAbstract {
- public WizardModelSub() {
- super((Wizard)null, (String)null, (String)null, (ImageIcon)null, (ExceptionHandler)null);
- }
-
- public WizardModelSub(Wizard wizard, String bullet, String info, ImageIcon icon, ExceptionHandler handler) {
- super(wizard, bullet, info, icon, handler);
- }
-
- protected WizardManager getWizardManager() {
- return null;
- }
-
- public void initialize(int direction) throws InternalError, ExternalError {
- if (direction == 1 && ((WizardPage)this).getView() != null) {
- ((WizardPage)this).getView().setModel(this);
- }
-
- }
- }
-